Returns True or False to indicate if the Windows version is 64-bit.
Syntax
Is64BitWindows()
Return value
| Value | Description |
|---|---|
| True | Windows version is 64-bit. |
| False | Windows version is 32-bit. |
Example
If Is64BitWindows() Then
PrintLn("64-bit Windows")
Else
PrintLn("32-bit Windows")
End if